home *** CD-ROM | disk | FTP | other *** search
- /*
- * UnitNtryCnt is not defined in the Universal Headers. This is a bug.
- * We define it in our own include file, so that when the Universal
- * Headers are corrected, we can remove this include file and everything
- * will compile correctly.
- *
- * 940522 BL°B Creation
- */
-
- #define UnitNtryCnt 0x01D2
-
- short LMGetUnitEntryCount (void)
- {
- return (*(short *)UnitNtryCnt);
- }
-
- void LMSetUnitEntryCount (short newUnitEntryCount)
- {
- *(short *)UnitNtryCnt = newUnitEntryCount;
- }
-
-